FrameAttachedEvent

data class FrameAttachedEvent(frameId: FrameId, parentFrameId: FrameId, stack: StackTrace?) : Event

Fired when frame has been attached to its parent.

Constructors

FrameAttachedEvent
Link copied to clipboard
fun FrameAttachedEvent(frameId: FrameId, parentFrameId: FrameId, stack: StackTrace? = null)

Functions

domain
Link copied to clipboard
open override fun domain(): String
Returns domain name for which event was generated.
eventName
Link copied to clipboard
open override fun eventName(): String
Returns event name as described in protocol.

Properties

frameId
Link copied to clipboard
val frameId: FrameId
Id of the frame that has been attached.
parentFrameId
Link copied to clipboard
val parentFrameId: FrameId
Parent frame identifier.
stack
Link copied to clipboard
val stack: StackTrace? = null
JavaScript stack trace of when frame was attached, only set if frame initiated from script.

Sources

jvm source
Link copied to clipboard